furny.furndb
Interface FurnitureUpdateListener

All Known Implementing Classes:
BrowserPanel, FurnCache

public interface FurnitureUpdateListener

Listener for furnitures.

Since:
10.08.2012
Author:
Stephan Dreyer

Method Summary
 void furnitureDeleted(java.lang.Long id)
          This method will be notified if a furniture is updated.
 void furnitureIdsUpdated(java.util.List<java.lang.Long> ids)
          This method will be notified if a list of furnitures are updated.
 void furnitureUpdated(java.lang.Long id, Furniture furniture)
          This method will be notified if a furniture is updated.
 

Method Detail

furnitureIdsUpdated

void furnitureIdsUpdated(java.util.List<java.lang.Long> ids)
This method will be notified if a list of furnitures are updated.

Parameters:
ids - The list of furniture ids.
Since:
10.08.2012

furnitureUpdated

void furnitureUpdated(java.lang.Long id,
                      Furniture furniture)
This method will be notified if a furniture is updated.

Parameters:
id - The id of the furniture.
furniture - The furniture
Since:
10.08.2012

furnitureDeleted

void furnitureDeleted(java.lang.Long id)
This method will be notified if a furniture is updated.

Parameters:
id - The id of the furniture.
Since:
10.08.2012